From: George Dunlap Date: Thu, 23 Feb 2012 10:16:10 +0000 (+0000) Subject: scheduler: Print ratelimit in scheduler debug key X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=7a191adcfb36836c7ee472e2daa50bdad365e484;p=xen.git scheduler: Print ratelimit in scheduler debug key Signed-off-by: George Dunlap Committed-by: Keir Fraser --- diff --git a/xen/common/sched_credit.c b/xen/common/sched_credit.c index 015ea21a70..2579a226a0 100644 --- a/xen/common/sched_credit.c +++ b/xen/common/sched_credit.c @@ -1504,6 +1504,7 @@ csched_dump(const struct scheduler *ops) "\trunq_sort = %u\n" "\tdefault-weight = %d\n" "\ttslice = %dms\n" + "\tratelimit = %dus\n" "\tcredits per msec = %d\n" "\tticks per tslice = %d\n" "\tmigration delay = %uus\n", @@ -1515,6 +1516,7 @@ csched_dump(const struct scheduler *ops) prv->runq_sort, CSCHED_DEFAULT_WEIGHT, prv->tslice_ms, + prv->ratelimit_us, CSCHED_CREDITS_PER_MSEC, prv->ticks_per_tslice, vcpu_migration_delay);